home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / MAIL32._M_ < prev    next >
Text File  |  1997-07-26  |  1KB  |  36 lines

  1. # Microsoft makefile for MAIL [Win32]
  2. #
  3. # To use: "NMAKE MAIL32._M_"
  4. #
  5.  
  6. CFLAGS   = -c -DWIN32 -DSTRICT -G3 -Ow -W3 -Zp -Tp
  7. GUIFLAGS = -SUBSYSTEM:windows
  8. GUILIBS  = -DEFAULTLIB:user32.lib gdi32.lib winmm.lib comdlg32.lib comctl32.lib wil32.lib
  9.  
  10. mail.exe: mail.obj mail.res async.obj about.obj paint.obj readini.obj str.obj unique.obj
  11.      link $(GUIFLAGS) -OUT:mail.exe mail.obj about.obj async.obj paint.obj readini.obj str.obj unique.obj mail.res $(GUILIBS)
  12.  
  13. mail.obj: mail.c wil.h
  14.      cl $(CFLAGS) mail.c
  15.  
  16. about.obj: about.c about.h wil.h
  17.      cl $(CFLAGS) about.c
  18.  
  19. async.obj: async.c async.h wil.h
  20.      cl $(CFLAGS) async.c
  21.  
  22. readini.obj: readini.c readini.h
  23.      cl $(CFLAGS) readini.c
  24.  
  25. str.obj: str.c str.h
  26.      cl $(CFLAGS) str.c
  27.  
  28. paint.obj: paint.c paint.h
  29.      cl $(CFLAGS) paint.c
  30.  
  31. unique.obj: unique.c unique.h
  32.      cl $(CFLAGS) unique.c
  33.  
  34. mail.res: mail.rc msc.ico wil.h
  35.      rc -r -DWIN32 mail.rc
  36.